@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    padding: 0;
    margin: 0;
}
/* cube coding start */
.cube {
  position: relative;
  top: 20px;

  width: 60px;
  height: 60px;
  transform-style: preserve-3d;
  animation: animate 6s linear infinite;
}

@keyframes animate {
  0% {
      transform: rotateX(-30deg) rotateY(0deg);
  }

  100% {
      transform: rotateX(-30deg) rotateY(-360deg);
  }
}

.cube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cube div span {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#151515, rgb(34, 55, 173));
  transform: rotateY(calc(90deg * var(--i))) translateZ(29px);
  /* 300 / 2= 150*/
  ;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #222;
  transform: rotateX(90deg) translateZ(29px);
}

.top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: rgb(34, 55, 173);
  transform: translateZ(-80px);
  filter: blur(30px);
  box-shadow: 0 0 120px rgba(255, 0, 0, 0.2),
      0 0 200px rgba(0, 38, 255, 0.4),
      0 0 300px rgba(34, 55, 173, 0.6),
      0 0 400px rgba(34, 55, 173, 0.8),
      0 0 500px rgb(34, 55, 173);
}

.top a h1 {
  text-align: center;
  font-size: 100px;
  color: rgb(255, 217, 0);
  background-color: black;
  border-radius: 50px;
  margin-top: 30%;
  text-decoration: none;
}

@media (max-width: 400px) {
  .cube {
      display: none;
  }
}
/* cube coding end  */


.header {
    display: flex;
    padding: 20px 20px 20px 20px;
    background-image: url();
    
}
.asrar h3{
    margin-left: 10px;
    color: rgb(98, 98, 112);
    margin-top: 25px;  
}
.asrar p{
  font-size: .7em;
  margin-left: 2%;
}

@media (min-width: 768px) {
    .asrar h3{
        font-size: calc(1vw + 1.4rem);
    }
}
@media (max-width: 468px) {
    .asrar h3{
        font-size: 16px;
    }
    .phone{
      visibility: hidden;
    }
}
.phone{
    position: absolute;
    right: 10px;
    color: rgb(32, 106, 175);

}
@media (max-width: 768px) {
    .phone{
        display: none;
    }
}
@media (max-width: 768px) {
    
    
  .phone{
      display: flex;
      position: absolute;
      top: 110px;
      width: 95%;
      margin: auto;
      
  }
  .phone p{
      margin: auto;
  }   
}
/* pop up window coding start*/
.popup .overlay{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: none;
}
.popup .content{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  /* background-color: white; */
  width: 60%;
  height: 60%;
  z-index: 4;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #222;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.popup.active .overlay {
  display: block;
}
.popup.active .content {
  transition:all 1s ease-in-out;
  transform: translate(-50%,-50%) scale(.8);
}
@media screen and (max-width: 768px){
  .popup.active .content{
    transform: translate(-50%,-50%) scale(1.5);
  }
  .popup .content{
    position: absolute;
    top: 50%;
  }
}

/*pop up window coding end*/

/* navbar coding start */
.wrapper{
    background: rgba(0, 0, 0, .6);
    position: absolute;
    width: 100%;
    z-index: 3;
  }
  .wrapper nav{
    
    display: flex;
    
    height: 70px;
    
  }
  nav .content{
    display: flex;
    align-items: center;
    
  }
  
.links{
  margin: auto;
  display: flex;
  
}
  
  .content .logo a{
    text-decoration: none;
    color: cyan;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
  }
  .content .links li{
    list-style: none;
    line-height: 70px;
    
  }
  .content .links li a,
  .content .links li label{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 5px;
    
  }
  .content .links li label{
    display: none;
  }
  .content .links li a:hover,
  .content .links li label:hover{
    background: black;
    box-shadow: 1px 1px 5px cyan;
    
  }
  
  .wrapper .menu-icon{
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
  }
  .wrapper .menu-icon{
    display: none;
  }
 

  .wrapper input[type="checkbox"]{
    display: none;
  }
  
  /* Dropdown Menu code start */
  .content .links ul{
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    top: 80px;
    /* z-index: -1; */
    opacity: 0;
    visibility: hidden;
  }
  .content .links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .content .links ul li a{
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 5px;
    
    
  }
  .content .links ul ul{
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    right: calc(-100% + 8px);
  }
  .content .links ul li{
    position: relative;
  }
  .content .links ul li:hover ul{
    top: 0;
  }
  
  /* Responsive code start */
  @media screen and (min-width: 768px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 80px;
     
    }
    .content .links li a{
      padding: 8px 13px;
      
    }
   
  }
  
  @media screen and (max-width: 768px){
    .wrapper .menu-icon{
      display: block;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #14181f;
      height: 100%;
      width: 100%;
      top: 110px;
      left: -100%;
      margin-left: 0;
      max-width: 450px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
    }
    nav #show-menu:checked ~ .content .links{
      left: 0%;
    }
    .content .links li{
      margin: 15px 20px;
    }
    .content .links li a,
    .content .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
    }
    .content .links li a.desktop-link{
      display: none;
    }
    
  
    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .content .links #show-factory:checked ~ ul,
    .content .links #show-products:checked ~ ul,
    .content .links #show-menjeans:checked ~ ul,
    .content .links #show-wj:checked ~ ul,
    .content .links #show-kj:checked ~ ul{
      max-height: 100vh;
    }
    .content .links ul li{
      margin: 7px 20px;
    }
    .content .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: 5px!important;
    }
  }
  
  @media screen and (max-width: 400px){
    
    .wrapper nav{
      padding: 0 1px;
      
    }
    .content .logo a{
      font-size: 14px;
    }
    
  }
  /* navbar coding end */

/* auto text codin start */
  


.wrappers {
 
  width: 100%;
  margin: auto;
  position: relative;
  top: 75px;
  display: flex;
  line-height: 40px;
  height: 40px;
  
  justify-content: center;
}

.wrappers .txt {
  font-size: calc(1vw + .7rem);
  
  color: #808080;
}

.wrappers .txts {
  
  
  line-height: 40px;
  height: 40px;
  overflow: hidden;
}

@keyframes b {
  100% {
      top: -160px;
  }
}

.txts li {
  list-style: none;
  overflow: hidden;
  top: 0;
  
  color: tomato;
  font-size: calc(1vw + .7rem);
  position: relative;
  animation: b 12s steps(4) infinite;
}

.txts li::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #fff;
  /* border-left: 2px solid tomato; */
  left: 0;
  animation: a 3s steps(10) infinite;
}

@keyframes a {

  40%,
  60% {
      left: calc(100% + 50px);
  }

  100% {
      left: 0;
  }
}

  .main{
      height: 30vh;
      width: 100%;
      background-color: rgba(0, 0, 0, .9);
      display: flex;
      justify-content: center;
      align-items: center;
  }
 
  .main .aboutus h1{
    font-size: calc(1vw + 1.5rem);
      
      line-height: 75px;
      border-radius: 20px;
      font-family: math;
      color: white;
      box-shadow: 5px 5px 20px rgb(56, 154, 172);
      width: 30vw;
      height: 80px;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      text-shadow: 2px 2px 5px rgb(56, 154, 172) ;
  }
  .quote{
      width: 85%;
      margin: auto;
      position: relative;
      top: 30px;
      border: 2px solid gray;
      border-radius: 40px;
      
      padding: 20px;
      line-height: 30px;
      font-weight: 600;
  }

/*footer start*/
section{
  border: 2px solid gray;
  height: 130px;
  background-color: #333;
}

.footer{
    width: 100%;
    margin: auto;
    background-color: #333;
    height: 130px;
    
    
}
.footer a{
    text-decoration: none;
    color: rgb(42, 152, 255);
    letter-spacing: 1.5px;
    margin: 10px;
    font-size: large;
}
.links{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright{
    margin: auto;
    width: 250px;
    position: relative;
    top: 50px;
    color: white;
    
}
@media only screen and (max-width: 768px) {
  .copyright{
    position: relative;
    top: 25px;
  }
  .footer a{
    font-size: small;
  }
}
@media only screen and (max-width: 400px) {
  .footer a{
    font-size: x-small;
  }
}



    
    
